home *** CD-ROM | disk | FTP | other *** search
- -- Routines for managing object movies
- -------------------------------------------------------------------------------
-
-
-
- --=============================================================================
- -- ZoomNavMovie:
- -- pStartZoomRect specifies the start rect as a string rect
- -- [pSkipFirstFrame] is "true" if the first zoom frame should not be shown
- -- [pClipRect] is the screen string rect to which the zoom should be clipped
- --
- -- Zooms the nav movie out from the start rect specified, possibly skipping
- -- the first frame and clipping to a given rect.
- -- Note: this is unsupported on the PC side
- -------------------------------------------------------------------------------
- on ZoomNavMovie pStartZoomRect, pSkipFirstFrame, pClipRect
- global gQTVRInstanceXtra
-
- -- Make sure we're on a mac before trying this
- if the machineType <> 256 then
-
- if IsQTVRMovie(gQTVRInstanceXtra) then
- QTVRZoomOutEffect(gQTVRInstanceXtra,pStartZoomRect,pSkipFirstFrame,pClipRect)
- QTVRIdle(gQTVRInstanceXtra)
- end if
- end if
- end ZoomNavMovie